Skip to main content
POST
/
api
/
v1
/
oauth-connections
/
{id}
/
verify
Probe the stored connection by loading the credential (triggers refresh if expiring). Always returns 200 with a `valid: bool` body — a failed probe doesn't map to 4xx so the dashboard can render the reason.
curl --request POST \
  --url https://api.backside.app/api/v1/oauth-connections/{id}/verify \
  --header 'Authorization: Bearer <token>'
{
  "valid": true,
  "reason": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

OAuth connection id

Response

Probe result

valid
boolean
required
reason
string | null